• File: generate_password_md5.php
  • Full Path: C:/htdocs/reeft_gps_test/css/include/generate_password_md5.php
  • Date Modified: 04/30/2025 7:56 AM
  • File size: 414 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
//======================================================================================
// Function: Generate password - UTF
//======================================================================================
function GeneratePasswordMd5($user, $pass) {
	
        $ucs2str = mb_convert_encoding($user . "|" . $pass, 'UCS-2LE', 'UTF-8');
		
        return strtoupper(md5($ucs2str));
		
}

?>